  body {
  font-family:cinzel serif;
  background: url('   '), linear-gradient(135deg, #999494, #a1a1a1);
  color: #e0e0e0;
  background-repeat: no-repeat;
  background-size:cover ;
}
  .header{
  background: url('https://www.transparenttextures.com/patterns/brushed-alum.png'), linear-gradient(135deg, #000000e1, #a1a1a1);
  background-blend-mode: overlay;
  background-size: 200% 200%;
  animation: steelGloss 15s linear infinite;
  padding: 100px 20px 60px;
  text-align: center;
  border-bottom-left-radius: 60px;
  border-bottom-right-radius: 60px;
  box-shadow: inset 0 0 60px rgba(255,255,255,0.2);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.897);
   
}

@keyframes steelGloss {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.header  h1 {
  font-size: 48px;
  animation: bounceInDown 1.5s both;
  background: linear-gradient(to right, rgb(5, 5, 5), rgba(0, 0, 0, 0.164));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;

}
  .service-card:hover {
    transform: translateZ(20px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 35px 60px rgba(0,0,0,0.15);
  }
   .about, .services, .contact, .footer {
    padding: 40px;
    perspective: 1000px;
    animation: fadeInRotate 1s ease-in-out;
    transform-style: preserve-3d;
  }
 



    
    
    .home-link {
      position: absolute;
      top: 20px;
      left: 20px;
      text-decoration: none;
      transition: background-color 0.3s ease;
      align-self: flex-end;
      background: linear-gradient(145deg, #dfe2e6, #aeb2b6);  
      border: 2px solid #c1c4c7;
    color: #2a2a2a;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 12px;
    box-shadow:
      inset 0 2px 3px rgba(255, 255, 255, 0.6),   
      0 4px 8px rgba(0, 0, 0, 0.2);               
    text-shadow: 1px 1px 0 #fff;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .home-link:hover {
    background: linear-gradient(145deg, #f1f1f1, #bfc2c5); 
    box-shadow:
      inset 0 2px 4px rgba(255, 255, 255, 0.8),
      0 6px 12px rgba(0, 0, 0, 0.25);
    transform: translateY(-1px);
  }
  .about, .services, .contact {
    background: white;
    margin: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background: url('https://www.transparenttextures.com/patterns/brushed-alum.png'), linear-gradient(135deg, #000000e1, #a1a1a1);
  } 
  .services-content {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .services h2{
    font-size:30px;
    overflow: hidden;
     font-weight:800;
     background: linear-gradient(90deg, #000000, #252525, #8b8989, #180e0e);  
     -webkit-background-clip: text;
     background-clip: text; /* For Firefox compatibility */
     color: transparent;
     margin-bottom: 30px;
  }
  .about h2{
    font-size:30px;
    overflow: hidden;
     font-weight:800;
     background: linear-gradient(90deg, #000000, #252525, #8b8989, #180e0e);  
     -webkit-background-clip: text;
     background-clip: text; /* For Firefox compatibility */
     color: transparent;
     margin-bottom: 30px;
  }
  .about p{
    margin-top: 15px;
    font-size:20px;
    overflow: hidden;
 
  }
  .services p{
    margin-top: 15px;
    font-size:20px;
    overflow: hidden;
 
  }
  .services img {
    width: 400px;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin-top: 30px;
     
  }
  .services-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .services-content img {
    max-width: 90%;
  }

  .services-content div {
    width: 100%;
  }

  .services-content ul {
    padding-left: 20px;
    text-align: left;
  }
  .gallery {
    padding: 40px;
    background: #ffffff;
    margin: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background: url('https://www.transparenttextures.com/patterns/brushed-alum.png'), linear-gradient(135deg, #000000e1, #a1a1a1);
  }
  
  .gallery h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    background: linear-gradient(90deg, #000000, #252525, #8b8989, #180e0e);  
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 800;
  }
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .gallery-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
  }
  .gallery-grid img:hover {
    transform: scale(1.05);
  }
  

   